home *** CD-ROM | disk | FTP | other *** search
/ BCI NET / BCI NET Dec 94.iso / archives / programming / blitzbasic / blitz-list200994.lha / blitz-list / 000458_blitz-list-request_Mon Jul 4 09:37:46 1994.msg < prev    next >
Internet Message Format  |  1994-09-20  |  1KB

  1. Received: from VX22.CC.MONASH.EDU.AU (vx22.cc.monash.edu.au [130.194.1.22]) by kantti.helsinki.fi (8.6.9/8.6.5) with ESMTP id JAA24888 for <blitz-list@helsinki.fi>; Mon, 4 Jul 1994 09:37:37 +0300
  2. Received: from mdw089.cc.monash.edu.au by vaxc.cc.monash.edu.au
  3.  (PMDF V4.3-8 #6430) id <01HEBCU6SUSW93HQEG@vaxc.cc.monash.edu.au>; Mon,
  4.  04 Jul 1994 16:37:10 +1000
  5. Received: (msaw1@localhost) by mdw089.cc.monash.edu.au (8.6.9/8.6.4)
  6.  id QAA01010; Mon, 4 Jul 1994 16:37:06 +1000
  7. Date: Mon, 04 Jul 1994 16:34:06 +1000 (EST)
  8. From: Mr M Sawicki <msaw1@mdw089.cc.monash.edu.au>
  9. Subject: Re: TextEntry problem
  10. In-reply-to: <199407050037.AA10316@zeus>
  11. To: tom duncan <duncan@zeus.usq.edu.au>
  12. Cc: blitz-list@helsinki.fi
  13. Message-id: <Pine.3.07.9407041605.B923-a100000@mdw089.cc.monash.edu.au>
  14. MIME-version: 1.0
  15. Content-type: TEXT/PLAIN; charset=US-ASCII
  16. Content-transfer-encoding: 7BIT
  17. X-Status: 
  18. Status: RO
  19.  
  20.  
  21.  
  22. On Mon, 4 Jul 1994, tom duncan wrote:
  23.  
  24. > > >     2. ROL
  25. > > > I need to do a 4 bit ROL and havn't a clue on setting up the registers.
  26. > > > Any ideas anyone.
  27. > > 
  28. > > No need to. All you have to do is
  29. > > 
  30. > > a ROL 4 <- this will rotate a 4 times to the left.
  31. > tried that
  32. >     a ROL 4
  33. >     a=a ROL 4
  34. >     a=(a ROL 4)
  35. > errors with each and every one.
  36. > Tom D
  37.  
  38. Oooops my mistake, rotation is not supported by Blitz. Instead you'll have
  39. to use ASL/ASR for arithmetic rotation or LSL/LSR for logical rotation .
  40.  
  41. Maciek.
  42.  
  43.